3 <!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
5 <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
7 In the example below, the "SetAttributes" transform will change the value of
8 "connectionString" to use "ReleaseSQLServer" only when the "Match" locator
9 finds an atrribute "name" that has a value of "MyDB".
13 connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
14 xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
18 <compilation xdt:Transform="RemoveAttributes(debug)" />
20 In the example below, the "Replace" transform will replace the entire
21 <customErrors> section of your web.config file.
22 Note that because there is only one customErrors section under the
23 <system.web> node, there is no need to use the "xdt:Locator" attribute.
25 <customErrors defaultRedirect="GenericError.htm"
26 mode="RemoteOnly" xdt:Transform="Replace">
27 <error statusCode="500" redirect="InternalError.htm"/>